home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ Win Troubleshooting.xpl < prev    next >
Text File  |  1998-11-12  |  990b  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="System\Security"
  5. "NAME"="Screensaver"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Delete Screensaver Password"
  8. "DESCRIPTION 1"="Click the first button if you have set a password for your screensaver and you do not remember it anymore."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  12. "COMMENT 2"="Version 1.1"
  13.  
  14.  
  15.  
  16. Sub Plugin_Initialize 
  17. ' Disable
  18. End Sub
  19.  
  20. Sub Plugin_CheckData(ElementIndex)
  21. End Sub
  22.  
  23. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  24.  i=ElementIndex
  25.  Select Case i
  26.  
  27.   Case 1
  28.    s=RegReadValue("HKUS\.Default\Control Panel\desktop\ScreenSave_Data")
  29.    if IsEmpty(s)=false then
  30.     Call RegDeleteValue("HKUS\.Default\Control Panel\desktop\ScreenSave_Data")
  31.    end if
  32.    Call MsgInformation("Deleted")
  33.  
  34.  end select
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.